-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path7.1.2 (d x)^m (a+b arcsinh(c x))^n.nb
More file actions
3906 lines (3826 loc) · 198 KB
/
7.1.2 (d x)^m (a+b arcsinh(c x))^n.nb
File metadata and controls
3906 lines (3826 loc) · 198 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(* Content-type: application/mathematica *)
(*** Wolfram Notebook File ***)
(* http://www.wolfram.com/nb *)
(* CreatedBy='Mathematica 7.0' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 145, 7]
NotebookDataLength[ 198546, 3897]
NotebookOptionsPosition[ 193487, 3762]
NotebookOutlinePosition[ 195179, 3815]
CellTagsIndexPosition[ 195136, 3812]
WindowFrame->Normal*)
(* Beginning of Notebook Content *)
Notebook[{
Cell[BoxData[Cell[TextData[{
StyleBox["Rules for integrands of the form ",
FontFamily->"Arial"],
Cell[BoxData[
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"d", " ", "x"}], ")"}], "m"], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
RowBox[{"ArcSinh", "[",
RowBox[{"c", " ", "x"}], "]"}]}]}], ")"}], "n"]}]],
CellDingbat->None,
CellChangeTimes->{
3.477935275784027*^9, {3.477935350060832*^9, 3.477935352384173*^9}, {
3.477935393803731*^9, 3.477935400102789*^9}, {3.477935515378547*^9,
3.47793552034569*^9}, 3.478120029940968*^9, {3.479318860690858*^9,
3.47931886615872*^9}, {3.4794185033278093`*^9, 3.479418503918659*^9},
3.4795122294117584`*^9, {3.479615913307893*^9, 3.4796159352794867`*^9},
3.4796160386581373`*^9, 3.4796867204045024`*^9, {3.4928025699585147`*^9,
3.492802570130115*^9}, 3.492822274480175*^9, 3.492825822242408*^9, {
3.4940970615585365`*^9, 3.494097062168537*^9}, {3.496441349250718*^9,
3.496441349830719*^9}, 3.4964414848609076`*^9, 3.496521708137803*^9, {
3.4965218981240697`*^9, 3.49652189838407*^9}, 3.4965229070755*^9,
3.519247079685614*^9, {3.5193208582062006`*^9, 3.5193208612170057`*^9},
3.5193325694253187`*^9, {3.5193415004828687`*^9,
3.5193415113404875`*^9}, {3.5193513965602303`*^9,
3.519351397420232*^9}, {3.5194037839416766`*^9, 3.5194037847117205`*^9},
3.52105258275843*^9, 3.5210531741726685`*^9, {3.521057461672199*^9,
3.5210574760242243`*^9}, {3.521059881564049*^9, 3.521059886088057*^9}, {
3.5213902158895197`*^9, 3.521390217543123*^9}, {3.521390827878595*^9,
3.521390829376197*^9}, {3.5214688792561245`*^9, 3.521468879443325*^9}, {
3.523320201951167*^9, 3.523320202247567*^9}, {3.5288596764894824`*^9,
3.5288596768094826`*^9}, {3.529196266260353*^9,
3.5291962665099535`*^9}, {3.5291997050223927`*^9,
3.5291997052563934`*^9}, {3.529201346457276*^9, 3.529201347252877*^9}, {
3.529285041073242*^9, 3.5292850412632427`*^9}, {3.529285215443486*^9,
3.529285215443486*^9}, {3.5295115356999426`*^9,
3.5295115433443794`*^9}, {3.529521412127842*^9, 3.529521414647986*^9}, {
3.529529429975619*^9, 3.529529432955224*^9}, 3.5340074894011116`*^9,
3.5415537711400824`*^9, {3.5415538454742126`*^9, 3.54155384951462*^9}, {
3.5417297197063265`*^9, 3.5417297252443366`*^9}, {3.546297494083555*^9,
3.5462974982435613`*^9}, {3.5462989134855423`*^9,
3.5462989153655453`*^9}, 3.548544146508506*^9, 3.5488738855784535`*^9, {
3.5505953688729563`*^9, 3.5505953726861744`*^9}, {3.550619508681926*^9,
3.5506195174954305`*^9}, {3.551326301250945*^9, 3.551326301841979*^9}, {
3.552150760656293*^9, 3.552150761436294*^9}, 3.5521509768882723`*^9, {
3.5521510341403728`*^9, 3.5521510486171985`*^9}, {3.5521511118909097`*^9,
3.5521511159313164`*^9}, 3.55215165895267*^9, 3.552151705315952*^9,
3.553532182175474*^9, {3.553559669357978*^9, 3.553559705888029*^9}, {
3.553560225618757*^9, 3.55356022752876*^9}, {3.5536175751912155`*^9,
3.5536175847212286`*^9}, 3.5860254133948617`*^9, 3.5861106634510365`*^9},
FontWeight->"Bold"]
}], "None"]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{
3.477935275784027*^9, {3.477935350060832*^9, 3.477935352384173*^9}, {
3.477935393803731*^9, 3.477935400102789*^9}, {3.477935515378547*^9,
3.47793552034569*^9}, 3.478120029940968*^9, {3.479318860690858*^9,
3.47931886615872*^9}, {3.4794185033278093`*^9, 3.479418503918659*^9},
3.4795122294117584`*^9, {3.479615913307893*^9, 3.4796159352794867`*^9},
3.4796160386581373`*^9, 3.4796867204045024`*^9, {3.4928025699585147`*^9,
3.492802570130115*^9}, 3.492822274480175*^9, 3.492825822242408*^9, {
3.4940970615585365`*^9, 3.494097062168537*^9}, {3.496441349250718*^9,
3.496441349830719*^9}, 3.4964414848609076`*^9, 3.496521708137803*^9, {
3.4965218981240697`*^9, 3.49652189838407*^9}, 3.4965229070755*^9,
3.4965234353062396`*^9, {3.5193214825316973`*^9, 3.5193214852617016`*^9}, {
3.523316399894187*^9, 3.5233164032341914`*^9}, {3.523318350558202*^9,
3.5233183516382036`*^9}, {3.536542725780803*^9, 3.536542725780803*^9}, {
3.5367764878952584`*^9, 3.5367764886452594`*^9}, {3.544322815209103*^9,
3.5443228192963104`*^9}, {3.5450662624913826`*^9, 3.545066292141424*^9}, {
3.545066402271579*^9, 3.5450664054415827`*^9}, {3.5450834884295015`*^9,
3.5450834895895033`*^9}, {3.5454961263762493`*^9,
3.5454961321462574`*^9}, {3.5454963863166127`*^9,
3.5454964580867133`*^9}, {3.545497046127537*^9, 3.545497046127537*^9}, {
3.5454971130676303`*^9, 3.545497136257663*^9}, 3.545610399977621*^9, {
3.546040778592962*^9, 3.546040778592962*^9}, {3.5461052065706367`*^9,
3.5461052249474688`*^9}, {3.546191339879622*^9, 3.5461913430596266`*^9}, {
3.5462141824067917`*^9, 3.5462142145768366`*^9}, {3.5462145455473003`*^9,
3.5462145601073203`*^9}, {3.5463149785974817`*^9,
3.5463149794195285`*^9}, {3.5488738437683954`*^9,
3.5488738699084315`*^9}, {3.5488890647645535`*^9, 3.548889080804576*^9}, {
3.5505951583099127`*^9, 3.5505951620351257`*^9}, {3.5758457803910656`*^9,
3.5758457938510847`*^9}, {3.5758458780912023`*^9,
3.5758458797312045`*^9}, {3.5758460250714083`*^9, 3.575846028691413*^9}, {
3.5758461031815176`*^9, 3.575846103681518*^9}, {3.5758463018517957`*^9,
3.5758463042917986`*^9}, {3.5758464155019546`*^9, 3.575846417191957*^9}, {
3.5758465224621043`*^9, 3.5758465297321143`*^9}, {3.586110883301344*^9,
3.5861109115613837`*^9}, {3.586189963835286*^9, 3.586189963835286*^9}, {
3.5861901083579884`*^9, 3.5861901105479918`*^9}, {3.6712121396555467`*^9,
3.6712121396555467`*^9}, {3.671212576753547*^9, 3.671212576753547*^9}, {
3.6713792768628645`*^9, 3.6713792768628645`*^9}},
TextAlignment->Center,
FontWeight->"Bold"],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{Cell[TextData[StyleBox["1.",
FontFamily->"Arial"]], "None"], " ",
RowBox[{"\[Integral]",
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"d", " ", "x"}], ")"}], "m"], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
RowBox[{"ArcSinh", "[",
RowBox[{"c", " ", "x"}], "]"}]}]}], ")"}], "n"],
RowBox[{"\[DifferentialD]", "x"}], " ",
StyleBox["when",
FontFamily->"Arial",
FontWeight->"Plain"],
StyleBox[" ",
FontFamily->"Arial",
FontWeight->"Plain"], Cell[TextData[Cell[BoxData[
RowBox[{"n", "\[Element]",
SuperscriptBox["\[DoubleStruckCapitalZ]", "+"]}]]]],
"None"]}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{
3.477935275784027*^9, {3.477935350060832*^9, 3.477935352384173*^9}, {
3.477935393803731*^9, 3.477935400102789*^9}, {3.477935515378547*^9,
3.47793552034569*^9}, 3.478120029940968*^9, {3.479318860690858*^9,
3.47931886615872*^9}, {3.4794185033278093`*^9, 3.479418503918659*^9},
3.4795122294117584`*^9, {3.479615913307893*^9, 3.4796159352794867`*^9},
3.4796160386581373`*^9, 3.4796867204045024`*^9, {3.4928025699585147`*^9,
3.492802570130115*^9}, 3.492822274480175*^9, 3.492825822242408*^9, {
3.4940970615585365`*^9, 3.494097062168537*^9}, {3.496441349250718*^9,
3.496441349830719*^9}, 3.4964414848609076`*^9, 3.496521708137803*^9, {
3.4965218981240697`*^9, 3.49652189838407*^9}, 3.4965229070755*^9,
3.519247079685614*^9, {3.5193208582062006`*^9, 3.5193208612170057`*^9},
3.5193325694253187`*^9, {3.5193415004828687`*^9, 3.5193415113404875`*^9}, {
3.5193513965602303`*^9, 3.519351397420232*^9}, {3.5194037839416766`*^9,
3.5194037847117205`*^9}, 3.52105258275843*^9, 3.5210531741726685`*^9, {
3.521057461672199*^9, 3.5210574760242243`*^9}, {3.521059881564049*^9,
3.521059886088057*^9}, {3.5213902158895197`*^9, 3.521390217543123*^9}, {
3.521390827878595*^9, 3.521390829376197*^9}, {3.5214688792561245`*^9,
3.521468879443325*^9}, {3.523320201951167*^9, 3.523320202247567*^9}, {
3.5288596764894824`*^9, 3.5288596768094826`*^9}, {3.529196266260353*^9,
3.5291962665099535`*^9}, {3.5291997050223927`*^9,
3.5291997052563934`*^9}, {3.529201346457276*^9, 3.529201347252877*^9}, {
3.529285041073242*^9, 3.5292850412632427`*^9}, {3.529285215443486*^9,
3.529285215443486*^9}, {3.5295115356999426`*^9, 3.5295115433443794`*^9}, {
3.529521412127842*^9, 3.529521414647986*^9}, {3.529529429975619*^9,
3.529529432955224*^9}, 3.5340074894011116`*^9, 3.5415537711400824`*^9, {
3.5415538454742126`*^9, 3.54155384951462*^9}, {3.5417297197063265`*^9,
3.5417297252443366`*^9}, {3.546297494083555*^9, 3.5462974982435613`*^9}, {
3.5462989134855423`*^9, 3.5462989153655453`*^9}, 3.548544146508506*^9,
3.5488738855784535`*^9, {3.5505953688729563`*^9, 3.5505953726861744`*^9}, {
3.550619508681926*^9, 3.5506195174954305`*^9}, {3.551326301250945*^9,
3.551326301841979*^9}, {3.552150760656293*^9, 3.552150761436294*^9},
3.5521509768882723`*^9, {3.5521510341403728`*^9, 3.5521510486171985`*^9}, {
3.5521511118909097`*^9, 3.5521511159313164`*^9}, 3.55215165895267*^9,
3.552151705315952*^9, 3.553532182175474*^9, {3.553559669357978*^9,
3.5535596696079783`*^9}, {3.5535605644192314`*^9,
3.5535605652692327`*^9}, {3.5535610430699015`*^9, 3.5535610432399015`*^9},
3.5535614789405117`*^9, {3.5535616244807153`*^9, 3.5535616246407156`*^9}, {
3.5548523491989403`*^9, 3.5548523662029705`*^9}, 3.5548704576963353`*^9, {
3.5549147309224463`*^9, 3.5549147449824657`*^9}, 3.5853498571410403`*^9,
3.5861901474230433`*^9, 3.620157790295836*^9, {3.6204986608495607`*^9,
3.620498664612776*^9}, {3.6205012137785797`*^9, 3.620501228019394*^9},
3.620501456712475*^9, {3.6712121254437337`*^9, 3.671212130818041*^9},
3.6712121925915747`*^9, 3.6712139606247*^9, 3.671214028154563*^9,
3.671379261637238*^9},
FontSize->12,
FontWeight->"Bold"],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"\t",
RowBox[{Cell[TextData[StyleBox["1:",
FontFamily->"Arial",
FontColor->RGBColor[1, 0, 0]]], "None"], " ",
RowBox[{"\[Integral]",
RowBox[{
FractionBox[
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
RowBox[{"ArcSinh", "[",
RowBox[{"c", " ", "x"}], "]"}]}]}], ")"}], "n"], "x"],
RowBox[{"\[DifferentialD]", "x"}], " ",
StyleBox["when",
FontFamily->"Arial",
FontWeight->"Plain"],
StyleBox[" ",
FontFamily->"Arial",
FontWeight->"Plain"], Cell[TextData[Cell[BoxData[
RowBox[{"n", "\[Element]",
SuperscriptBox["\[DoubleStruckCapitalZ]", "+"]}]]]],
"None"]}]}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{
3.477935275784027*^9, {3.477935350060832*^9, 3.477935352384173*^9}, {
3.477935393803731*^9, 3.477935400102789*^9}, {3.477935515378547*^9,
3.47793552034569*^9}, 3.478120029940968*^9, {3.479318860690858*^9,
3.47931886615872*^9}, {3.4794185033278093`*^9, 3.479418503918659*^9},
3.4795122294117584`*^9, {3.479615913307893*^9, 3.4796159352794867`*^9},
3.4796160386581373`*^9, 3.4796867204045024`*^9, {3.4928025699585147`*^9,
3.492802570130115*^9}, 3.492822274480175*^9, 3.492825822242408*^9, {
3.4940970615585365`*^9, 3.494097062168537*^9}, {3.496441349250718*^9,
3.496441349830719*^9}, 3.4964414848609076`*^9, 3.496521708137803*^9, {
3.4965218981240697`*^9, 3.49652189838407*^9}, 3.4965229070755*^9,
3.519247079685614*^9, {3.5193208582062006`*^9, 3.5193208612170057`*^9},
3.5193325694253187`*^9, {3.5193422443984776`*^9, 3.5193422447260776`*^9},
3.5193424488212357`*^9, {3.5193434708254333`*^9, 3.519343473103037*^9}, {
3.5193435097631016`*^9, 3.51934353169674*^9}, {3.519345739319023*^9,
3.519345739599823*^9}, 3.5193462601259375`*^9, {3.5193475061060295`*^9,
3.5193475233908596`*^9}, {3.519351391880224*^9, 3.5193513931402254`*^9}, {
3.519403773021052*^9, 3.5194037798564425`*^9}, 3.5194106793250647`*^9, {
3.519537578341393*^9, 3.5195375792305946`*^9}, {3.5195376277778797`*^9,
3.51953767927357*^9}, {3.5197586260636144`*^9, 3.5197586260636144`*^9}, {
3.51978053295651*^9, 3.519780542862528*^9}, {3.5197806526087203`*^9,
3.5197806657595434`*^9}, {3.5197807490168896`*^9, 3.5197807642581167`*^9},
3.5197809004619555`*^9, {3.519782653514635*^9, 3.5197826623286505`*^9}, {
3.5200207810164795`*^9, 3.520020785046485*^9}, {3.5213126833374643`*^9,
3.5213126833374643`*^9}, {3.521328235411002*^9, 3.521328235411002*^9}, {
3.523315567893022*^9, 3.523315567893022*^9}, {3.5233157569332867`*^9,
3.5233157613032923`*^9}, {3.5323023198133526`*^9, 3.532302355723403*^9}, {
3.5323026417638035`*^9, 3.5323026417638035`*^9}, {3.5323026980138817`*^9,
3.5323026980138817`*^9}, {3.532636287104328*^9, 3.532636287104328*^9}, {
3.5330803686035347`*^9, 3.533080368863535*^9}, {3.533248909289961*^9,
3.5332489110299635`*^9}, {3.534962469565694*^9, 3.5349624910757236`*^9}, {
3.5349625224057674`*^9, 3.534962522655768*^9}, {3.534965265519608*^9,
3.534965265519608*^9}, {3.5349668288168063`*^9, 3.5349668292668066`*^9}, {
3.5349747358481646`*^9, 3.5349747358481646`*^9}, {3.534975457949176*^9,
3.534975457949176*^9}, {3.5368633963532934`*^9, 3.536863396571694*^9}, {
3.541644322511304*^9, 3.5416443577513533`*^9}, {3.5416458269234104`*^9,
3.541645839633428*^9}, {3.5416460312236967`*^9, 3.541646031483697*^9},
3.541646227783972*^9, {3.541647080335165*^9, 3.5416471077052035`*^9}, {
3.541648997607849*^9, 3.5416489978278494`*^9}, 3.541649088407976*^9, {
3.5417848711596775`*^9, 3.541784902429721*^9}, {3.541786145331461*^9,
3.5417861455914617`*^9}, {3.5417870037166634`*^9, 3.5417870039366636`*^9},
3.5462979620242105`*^9, {3.546298264094633*^9, 3.546298265344635*^9}, {
3.546299000235664*^9, 3.546299001505666*^9}, {3.546315119909564*^9,
3.5463151267659564`*^9}, {3.547227356319705*^9, 3.547227356319705*^9},
3.547918559331044*^9, {3.547918610170952*^9, 3.5479186304411116`*^9},
3.548537755517557*^9, 3.5485441629685287`*^9, 3.5485517520154133`*^9, {
3.5488740727887154`*^9, 3.5488740727887154`*^9}, {3.548874206618903*^9,
3.548874206808903*^9}, 3.548877100795455*^9, 3.550596464087599*^9, {
3.5505965767870445`*^9, 3.5505965767870445`*^9}, 3.5505966202465305`*^9, {
3.5506039138305197`*^9, 3.55060391400453*^9}, {3.5506040039986773`*^9,
3.550604005776779*^9}, {3.5506178888272758`*^9, 3.5506178900273447`*^9}, {
3.550770598144562*^9, 3.550770659629079*^9}, {3.5507707252908344`*^9,
3.5507707474461017`*^9}, 3.5507880023630266`*^9, {3.5508017696214375`*^9,
3.5508017788269644`*^9}, {3.5508018116158395`*^9, 3.5508018116158395`*^9},
3.5508018976437597`*^9, {3.5508021384015307`*^9, 3.550802155115487*^9}, {
3.5508022151019173`*^9, 3.5508022151019173`*^9}, {3.550802487106476*^9,
3.5508025179152374`*^9}, {3.5508029261175857`*^9,
3.5508029342300496`*^9}, {3.5521511708590136`*^9, 3.5521511712334137`*^9},
3.552151666269083*^9, {3.5535324250863676`*^9, 3.553532441643315*^9}, {
3.553532476791325*^9, 3.553532477502366*^9}, {3.5535325810722895`*^9,
3.5535325810722895`*^9}, {3.553534924419321*^9, 3.5535349316017323`*^9}, {
3.5535606916294093`*^9, 3.553560715209442*^9}, {3.553560906999711*^9,
3.553560912889719*^9}, {3.5535610183798666`*^9, 3.5535610197098684`*^9}, {
3.553561508580553*^9, 3.553561525080576*^9}, {3.5535615930406713`*^9,
3.5535616035406857`*^9}, {3.554910910997098*^9, 3.554910915757105*^9}, {
3.5549117484282703`*^9, 3.5549117605482874`*^9}, {3.554912730909646*^9,
3.5549127360396533`*^9}, {3.5549136721909637`*^9, 3.5549136721909637`*^9},
3.554914986132803*^9, {3.5549163241346765`*^9, 3.5549163243246765`*^9}, {
3.5549164278148212`*^9, 3.554916428034822*^9}, {3.5549327039364157`*^9,
3.5549327054764185`*^9}, 3.5551920407462616`*^9, {3.555250957523697*^9,
3.5552509591772995`*^9}, {3.555252683307928*^9, 3.555252683510728*^9},
3.5853498582910423`*^9, 3.5853508165523834`*^9, {3.5853518656263523`*^9,
3.5853518674363546`*^9}, 3.5861901481930447`*^9, 3.5863642524534893`*^9, {
3.586968219253298*^9, 3.586968219253298*^9}, 3.586968958261863*^9, {
3.5869708508560925`*^9, 3.5869708836661396`*^9}, 3.5869851842914906`*^9, {
3.5869884306060896`*^9, 3.5869884306060896`*^9}, {3.586991203969972*^9,
3.586991204529973*^9}, {3.586991582290502*^9, 3.5869915824905024`*^9}, {
3.5870773806800413`*^9, 3.587077381370043*^9}, 3.6201579387583275`*^9,
3.6202686266178327`*^9, {3.6205016405759907`*^9, 3.6205016861605988`*^9}, {
3.6205017405887117`*^9, 3.6205017416227703`*^9}, 3.6205021343522334`*^9,
3.6209257654343805`*^9, 3.62092831155301*^9, {3.671212203751213*^9,
3.671212228079604*^9}, 3.671212593751519*^9, {3.67121292716759*^9,
3.671212944050555*^9}, 3.671379299951707*^9},
FontSize->12,
FontWeight->"Bold"],
Cell["Derivation: Integration by substitution", "Subsubsection",
CellChangeTimes->{3.4941724567488375`*^9, 3.494172818179343*^9}],
Cell[TextData[{
"Basis: ",
Cell[BoxData[
RowBox[{
FractionBox["1", "x"], "\[Equal]",
RowBox[{
FractionBox["1", "b"], " ",
RowBox[{"Subst", "[",
RowBox[{
RowBox[{"Coth", "[",
RowBox[{
RowBox[{"-",
FractionBox["a", "b"]}], "+",
FractionBox["x", "b"]}], "]"}], ",", "x", ",",
RowBox[{"a", "+",
RowBox[{"b", " ",
RowBox[{"ArcSinh", "[",
RowBox[{"c", " ", "x"}], "]"}]}]}]}], "]"}], " ",
RowBox[{
SubscriptBox["\[PartialD]", "x"],
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
RowBox[{"ArcSinh", "[",
RowBox[{"c", " ", "x"}], "]"}]}]}], ")"}]}]}]}]], "Input",
CellChangeTimes->{{3.586566688639513*^9, 3.586566713339547*^9}, {
3.586567111720105*^9, 3.5865671350101376`*^9}, {3.586567519960676*^9,
3.5865675376207013`*^9}, 3.586567570720748*^9, {3.58656788675119*^9,
3.58656790809122*^9}, {3.586567943031269*^9, 3.5865680220613794`*^9}, {
3.586568118811515*^9, 3.586568119461516*^9}, {3.5865681534515634`*^9,
3.5865681775415974`*^9}, {3.5865682092116413`*^9,
3.5865682434616895`*^9}, {3.5865682763917356`*^9, 3.5865683413518267`*^9}}]
}], "Subsubsection",
CellChangeTimes->{{3.5813762364323072`*^9, 3.581376326802434*^9}, {
3.5813826880473433`*^9, 3.5813826880473433`*^9}, {3.581720310829357*^9,
3.581720310829357*^9}, {3.581720366149435*^9, 3.581720366149435*^9}, {
3.5817204073994923`*^9, 3.5817204073994923`*^9}, {3.581720524929657*^9,
3.581720524929657*^9}, {3.5864633734979143`*^9, 3.5864633862354326`*^9}, {
3.586463493968087*^9, 3.586463494893089*^9}, {3.5864635381531506`*^9,
3.5864635393731527`*^9}, {3.586463685870864*^9, 3.586463685870864*^9}, {
3.58646382210106*^9, 3.58646382210106*^9}, {3.5864732982240467`*^9,
3.5864732982240467`*^9}, {3.586485090653509*^9, 3.586485090653509*^9}, {
3.586485180371138*^9, 3.586485180371138*^9}, {3.5864852213711967`*^9,
3.5864852213711967`*^9}, {3.586494187606468*^9, 3.5864942133777137`*^9}, {
3.5865432242749014`*^9, 3.5865432242749014`*^9}, {3.5865463088192196`*^9,
3.586546312729225*^9}, {3.586546396929343*^9, 3.5865464175093718`*^9}, {
3.5865464529294214`*^9, 3.5865464529294214`*^9}, {3.586546532519533*^9,
3.586546532519533*^9}, {3.5865468163899307`*^9, 3.5865468386399612`*^9}, {
3.5865491636532164`*^9, 3.5865491636532164`*^9}, {3.5865492145532875`*^9,
3.5865492145532875`*^9}, {3.586551856136986*^9, 3.586551856136986*^9}, {
3.5865607519912014`*^9, 3.5865607519912014`*^9}, {3.586563741525387*^9,
3.5865638039054737`*^9}, {3.5865678077210793`*^9, 3.586567824111102*^9},
3.586568533272095*^9, {3.5865688286425085`*^9, 3.5865688286425085`*^9}, {
3.586568997022744*^9, 3.586568997022744*^9}, {3.5865691763429956`*^9,
3.5865691763429956`*^9}, {3.5865833764756064`*^9,
3.5865833764756064`*^9}, {3.620501915857736*^9, 3.620501915857736*^9}, {
3.6712128305470634`*^9, 3.6712128305470634`*^9}, {3.6713792999829073`*^9,
3.6713792999829073`*^9}, {3.6713794435607643`*^9,
3.6713794435607643`*^9}, {3.751308971135766*^9, 3.751308971813805*^9}, {
3.7513090956018853`*^9, 3.7513090956018853`*^9}, {3.752967085079039*^9,
3.752967085079039*^9}, {3.7529671905653067`*^9, 3.7529671905653067`*^9}, {
3.7529726707744846`*^9, 3.7529726782936974`*^9}, {3.75297270837055*^9,
3.75297270837055*^9}, {3.7534571869190598`*^9, 3.7534571869190598`*^9}, {
3.7534572202095175`*^9, 3.7534572202095175`*^9}}],
Cell[TextData[{
"Note: If ",
Cell[BoxData[
RowBox[{"n", "\[Element]",
SuperscriptBox["\[DoubleStruckCapitalZ]", "+"]}]]],
", then ",
Cell[BoxData[
RowBox[{
SuperscriptBox["x", "n"], " ",
RowBox[{"Coth", "[",
RowBox[{
RowBox[{"-",
FractionBox["a", "b"]}], "+",
FractionBox["x", "b"]}], "]"}]}]],
CellDingbat->None,
CellChangeTimes->{{3.4796579732027807`*^9, 3.479658002474872*^9}, {
3.4796580599975853`*^9, 3.4796580609489536`*^9}, {3.479658295195784*^9,
3.47965829684816*^9}, 3.4796611938939075`*^9, 3.4796613924794593`*^9, {
3.479661443342597*^9, 3.479661446647349*^9}, {3.479661576554146*^9,
3.479661589302477*^9}, 3.479661847553824*^9, {3.4796622294729967`*^9,
3.4796622450654173`*^9}, {3.479686720424531*^9, 3.4796867204345455`*^9}, {
3.4796874646646957`*^9, 3.4796874745589232`*^9}, {3.492826573513727*^9,
3.492826578630536*^9}, {3.4928267070863624`*^9, 3.492826707460763*^9},
3.4928267903497095`*^9, {3.492829799151373*^9, 3.4928299617216005`*^9}, {
3.4940972077187414`*^9, 3.4940972347887793`*^9}, {3.49409966398218*^9,
3.494099664952181*^9}, {3.4940997156722527`*^9, 3.494099716112253*^9},
3.4941724567488375`*^9, {3.4941727384192314`*^9, 3.494172760679263*^9}, {
3.4941763955899596`*^9, 3.4941764290900064`*^9}, {3.4941764605500507`*^9,
3.4941764930400963`*^9}, 3.4941770641708956`*^9, 3.494177118590972*^9, {
3.4941890257602143`*^9, 3.4941890417814426`*^9}, {3.494189320351132*^9,
3.4941893689764175`*^9}, {3.4941960634447823`*^9, 3.494196109948464*^9}, {
3.494196492625537*^9, 3.4941965253075943`*^9}, {3.4941967717568274`*^9,
3.4941967891820583`*^9}, {3.494198824027233*^9, 3.4941988799065313`*^9}, {
3.5549115691980195`*^9, 3.5549115968580585`*^9}, {3.554912582239438*^9,
3.5549126668695564`*^9}, {3.5549164354848323`*^9, 3.554916460314867*^9}, {
3.554916561565009*^9, 3.5549165719750233`*^9}, {3.5853498583310423`*^9,
3.5853498583310423`*^9}, 3.585350816572384*^9, {3.5853519065864096`*^9,
3.5853519087964125`*^9}, {3.5861901482330446`*^9, 3.5861901482330446`*^9},
3.586190724633852*^9, {3.586968096958122*^9, 3.586968185123249*^9}, {
3.586985186366493*^9, 3.5869852059365215`*^9}, {3.5869869891440716`*^9,
3.5869869898240724`*^9}, 3.62050169580215*^9, {3.620501750392272*^9,
3.620501791017596*^9}, {3.6209256961144156`*^9, 3.6209257068080273`*^9}, {
3.6712122203891644`*^9, 3.6712122373831367`*^9}, {3.6712122713250775`*^9,
3.671212281716672*^9}, {3.6712125984707894`*^9, 3.6712126104024715`*^9}, {
3.6713792999985075`*^9, 3.6713792999985075`*^9}, 3.671379450190776*^9, {
3.752972757136236*^9, 3.752972774779867*^9}},
TextAlignment->Center,
FontSize->12,
FontWeight->"Bold"],
" is integrable in closed-form."
}], "Subsubsection",
CellDingbat->"\[FilledSmallSquare]",
CellChangeTimes->{{3.4794189093216*^9, 3.479418932274605*^9}, {
3.479418981395237*^9, 3.4794189822564754`*^9}, {3.4794192068193808`*^9,
3.4794192077607346`*^9}, 3.479420089138093*^9, {3.479420130978256*^9,
3.4794201410627565`*^9}, {3.479420560345656*^9, 3.479420578171288*^9}, {
3.479420683943381*^9, 3.4794206847645617`*^9}, {3.4794210347678413`*^9,
3.4794210503903055`*^9}, 3.4803613662913427`*^9, {3.480361406058525*^9,
3.48036141974821*^9}, {3.4803614672865667`*^9, 3.480361474717252*^9},
3.48070534977779*^9, {3.4928296953212276`*^9, 3.492829707041244*^9},
3.4941724084687696`*^9, 3.4941724567488375`*^9, {3.4941737492506466`*^9,
3.4941737506706486`*^9}, {3.494173966810951*^9, 3.494174007671008*^9}, {
3.4941741326011834`*^9, 3.4941741425911975`*^9}, {3.4941767936905165`*^9,
3.494176809630539*^9}, {3.4941773316412697`*^9, 3.494177333751273*^9}, {
3.4941781299723873`*^9, 3.494178211092501*^9}, {3.494178252592559*^9,
3.4941782798925977`*^9}, {3.49417832450266*^9, 3.494178365332717*^9}, {
3.4941785870814295`*^9, 3.4941785879394307`*^9}, {3.4941796318276644`*^9,
3.4941796418116817`*^9}, 3.574190021318244*^9, {3.574190199236556*^9,
3.574190206599769*^9}, {3.586718323140966*^9, 3.586718344360996*^9}, {
3.5867184410511312`*^9, 3.586718469371171*^9}, {3.586718741191551*^9,
3.586718773781597*^9}, {3.58697075179595*^9, 3.5869707777309875`*^9}, {
3.5869853577967405`*^9, 3.5869853577967405`*^9}, {3.5869870050640936`*^9,
3.586987005464094*^9}, {3.58698840977606*^9, 3.586988418726073*^9}, {
3.5870773847900476`*^9, 3.5870773857850494`*^9}, {3.671215132559731*^9,
3.671215132773743*^9}, {3.671215220328751*^9, 3.671215220328751*^9}, {
3.6712155133935137`*^9, 3.671215543881257*^9}, {3.671215959036003*^9,
3.671215959036003*^9}, {3.6713809831417217`*^9, 3.6713809831417217`*^9}, {
3.7513112625758295`*^9, 3.751311278030713*^9}, {3.75288045587368*^9,
3.75288045587368*^9}, {3.7528808157507124`*^9, 3.752880830274338*^9}, {
3.752880999456635*^9, 3.752880999456635*^9}, {3.7528814326069956`*^9,
3.7528814326069956`*^9}, {3.752881590338873*^9, 3.752881590338873*^9}, {
3.7529672894226804`*^9, 3.7529673002646995`*^9}, {3.7529727328313932`*^9,
3.752972741661009*^9}, {3.7529727833910823`*^9, 3.7529727898026934`*^9}, {
3.7534571886194625`*^9, 3.7534571886194625`*^9}}],
Cell[TextData[{
"Rule: If ",
Cell[BoxData[
RowBox[{"n", "\[Element]",
SuperscriptBox["\[DoubleStruckCapitalZ]", "+"]}]]],
", then"
}], "Subsubsection",
CellDingbat->"\[FilledSmallSquare]",
CellChangeTimes->{{3.4794189093216*^9, 3.479418932274605*^9}, {
3.479418981395237*^9, 3.4794189822564754`*^9}, {3.4794192068193808`*^9,
3.4794192077607346`*^9}, 3.479420089138093*^9, {3.479420130978256*^9,
3.4794201410627565`*^9}, {3.479420560345656*^9, 3.479420578171288*^9}, {
3.479420683943381*^9, 3.4794206847645617`*^9}, {3.4794210347678413`*^9,
3.4794210503903055`*^9}, 3.4803613662913427`*^9, {3.480361406058525*^9,
3.48036141974821*^9}, {3.4803614672865667`*^9, 3.480361474717252*^9},
3.48070534977779*^9, {3.4928296953212276`*^9, 3.492829707041244*^9},
3.4941724084687696`*^9, 3.4941724567488375`*^9, {3.4941737492506466`*^9,
3.4941737506706486`*^9}, {3.494173966810951*^9, 3.494174007671008*^9}, {
3.4941741326011834`*^9, 3.4941741425911975`*^9}, {3.4941767936905165`*^9,
3.494176809630539*^9}, {3.4941773316412697`*^9, 3.494177333751273*^9}, {
3.4941891756608777`*^9, 3.494189178765283*^9}, {3.4942004775317707`*^9,
3.494200477881771*^9}, {3.4950424099901724`*^9, 3.495042435550208*^9}, {
3.495045573264601*^9, 3.4950455868746204`*^9}, {3.5533778848417416`*^9,
3.55337789792449*^9}, {3.5535355634443245`*^9, 3.5535355634443245`*^9}, {
3.5549309146039114`*^9, 3.5549309146039114`*^9}, {3.554935398190188*^9,
3.554935398190188*^9}, {3.554935438010244*^9, 3.554935438010244*^9}, {
3.555033842213949*^9, 3.555033842213949*^9}, {3.55519561866591*^9,
3.55519561866591*^9}, {3.5551973155382853`*^9, 3.5551973155382853`*^9}, {
3.5552507987466173`*^9, 3.5552507987466173`*^9}, {3.555251708290615*^9,
3.555251708290615*^9}, {3.5863609285464163`*^9, 3.5863609299914184`*^9}, {
3.5869832316511793`*^9, 3.5869832316511793`*^9}, {3.620501260083228*^9,
3.620501260083228*^9}, {3.6712129792485685`*^9, 3.6712129792485685`*^9}}],
Cell[BoxData[
RowBox[{"\[Integral]",
RowBox[{
FractionBox[
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
RowBox[{"ArcSinh", "[",
RowBox[{"c", " ", "x"}], "]"}]}]}], ")"}], "n"], "x"],
RowBox[{"\[DifferentialD]",
RowBox[{"x", " ", "\[LongRightArrow]", " ",
FractionBox["1", "b"]}]}], " ",
RowBox[{"Subst", "[",
RowBox[{
RowBox[{"\[Integral]",
RowBox[{
SuperscriptBox["x", "n"], " ",
RowBox[{"Coth", "[",
RowBox[{
RowBox[{"-",
FractionBox["a", "b"]}], "+",
FractionBox["x", "b"]}], "]"}],
RowBox[{"\[DifferentialD]", "x"}]}]}], ",", "x", ",",
RowBox[{"a", "+",
RowBox[{"b", " ",
RowBox[{"ArcSinh", "[",
RowBox[{"c", " ", "x"}], "]"}]}]}]}], "]"}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{{3.4796579732027807`*^9, 3.479658002474872*^9}, {
3.4796580599975853`*^9, 3.4796580609489536`*^9}, {3.479658295195784*^9,
3.47965829684816*^9}, 3.4796611938939075`*^9, 3.4796613924794593`*^9, {
3.479661443342597*^9, 3.479661446647349*^9}, {3.479661576554146*^9,
3.479661589302477*^9}, 3.479661847553824*^9, {3.4796622294729967`*^9,
3.4796622450654173`*^9}, {3.479686720424531*^9, 3.4796867204345455`*^9}, {
3.4796874646646957`*^9, 3.4796874745589232`*^9}, {3.492826573513727*^9,
3.492826578630536*^9}, {3.4928267070863624`*^9, 3.492826707460763*^9},
3.4928267903497095`*^9, {3.492829799151373*^9, 3.4928299617216005`*^9}, {
3.4940972077187414`*^9, 3.4940972347887793`*^9}, {3.49409966398218*^9,
3.494099664952181*^9}, {3.4940997156722527`*^9, 3.494099716112253*^9},
3.4941724567488375`*^9, {3.4941727384192314`*^9, 3.494172760679263*^9}, {
3.4941763955899596`*^9, 3.4941764290900064`*^9}, {3.4941764605500507`*^9,
3.4941764930400963`*^9}, 3.4941770641708956`*^9, 3.494177118590972*^9, {
3.4941890257602143`*^9, 3.4941890417814426`*^9}, {3.494189320351132*^9,
3.4941893689764175`*^9}, {3.4941960634447823`*^9, 3.494196109948464*^9}, {
3.494196492625537*^9, 3.4941965253075943`*^9}, {3.4941967717568274`*^9,
3.4941967891820583`*^9}, {3.494198824027233*^9, 3.4941988799065313`*^9}, {
3.5549115691980195`*^9, 3.5549115968580585`*^9}, {3.554912582239438*^9,
3.5549126668695564`*^9}, {3.5549164354848323`*^9, 3.554916460314867*^9}, {
3.554916561565009*^9, 3.5549165719750233`*^9}, {3.5853498583310423`*^9,
3.5853498583310423`*^9}, 3.585350816572384*^9, {3.5853519065864096`*^9,
3.5853519087964125`*^9}, {3.5861901482330446`*^9, 3.5861901482330446`*^9},
3.586190724633852*^9, {3.586968096958122*^9, 3.586968185123249*^9}, {
3.586985186366493*^9, 3.5869852059365215`*^9}, {3.5869869891440716`*^9,
3.5869869898240724`*^9}, 3.62050169580215*^9, {3.620501750392272*^9,
3.620501791017596*^9}, {3.6209256961144156`*^9, 3.6209257068080273`*^9}, {
3.6712122203891644`*^9, 3.6712122373831367`*^9}, {3.6712122713250775`*^9,
3.671212281716672*^9}, {3.6712125984707894`*^9, 3.6712126104024715`*^9}, {
3.6713792999985075`*^9, 3.6713792999985075`*^9}, 3.671379450190776*^9, {
3.752972757136236*^9, 3.752972774779867*^9}, 3.752972807290324*^9,
3.7534571910374665`*^9, 3.7534572259035277`*^9},
TextAlignment->Center,
FontSize->12,
FontWeight->"Bold"],
Cell["Program code:", "Subsubsection",
CellDingbat->"\[FilledSmallSquare]",
CellChangeTimes->{{3.4794189093216*^9, 3.479418932274605*^9}, {
3.479418981395237*^9, 3.4794189822564754`*^9}, {3.4794192068193808`*^9,
3.4794192077607346`*^9}, 3.479420089138093*^9, {3.479420130978256*^9,
3.4794201410627565`*^9}, {3.479420560345656*^9, 3.479420578171288*^9}, {
3.479420683943381*^9, 3.4794206847645617`*^9}, {3.4794210347678413`*^9,
3.4794210503903055`*^9}, 3.4803613662913427`*^9, {3.480361406058525*^9,
3.48036141974821*^9}, {3.4803614672865667`*^9, 3.480361474717252*^9},
3.4807050675119123`*^9, {3.492804314166378*^9, 3.4928043441496305`*^9}, {
3.4928044532166224`*^9, 3.492804453513023*^9}, {3.492805162266266*^9,
3.492805165713872*^9}, 3.4941724567488375`*^9}],
Cell[BoxData[
RowBox[{
RowBox[{"Int", "[",
RowBox[{
RowBox[{
RowBox[{
RowBox[{"(",
RowBox[{"a_.", "+",
RowBox[{"b_.", "*",
RowBox[{"ArcSinh", "[",
RowBox[{"c_.", "*", "x_"}], "]"}]}]}], ")"}], "^", "n_."}], "/",
"x_"}], ",", "x_Symbol"}], "]"}], " ", ":=", "\n", " ",
RowBox[{
RowBox[{
RowBox[{"1", "/", "b"}], "*",
RowBox[{"Subst", "[",
RowBox[{
RowBox[{"Int", "[",
RowBox[{
RowBox[{
RowBox[{"x", "^", "n"}], "*",
RowBox[{"Coth", "[",
RowBox[{
RowBox[{
RowBox[{"-", "a"}], "/", "b"}], "+",
RowBox[{"x", "/", "b"}]}], "]"}]}], ",", "x"}], "]"}], ",", "x",
",",
RowBox[{"a", "+",
RowBox[{"b", "*",
RowBox[{"ArcSinh", "[",
RowBox[{"c", "*", "x"}], "]"}]}]}]}], "]"}]}], " ", "/;", "\n",
RowBox[{
RowBox[{"FreeQ", "[",
RowBox[{
RowBox[{"{",
RowBox[{"a", ",", "b", ",", "c"}], "}"}], ",", "x"}], "]"}], " ", "&&",
" ",
RowBox[{"IGtQ", "[",
RowBox[{"n", ",", "0"}], "]"}]}]}]}]], "Code",
CellChangeTimes->{{3.494097279728842*^9, 3.494097309778884*^9}, {
3.494099665582182*^9, 3.4940996672021847`*^9}, {3.4940997193022575`*^9,
3.494099719662258*^9}, 3.4941724567488375`*^9, 3.494172717389202*^9, {
3.4941763709899254`*^9, 3.49417638178994*^9}, 3.494176933060712*^9, {
3.4941891975165157`*^9, 3.494189292692283*^9}, 3.4941894111744914`*^9, {
3.4941961386609154`*^9, 3.494196199048621*^9}, 3.4941962310130777`*^9, {
3.494196685551076*^9, 3.494196749355188*^9}, {3.494196855996975*^9,
3.494196887758631*^9}, {3.494197244138057*^9, 3.494197246946062*^9}, {
3.494197819524268*^9, 3.4941978307718887`*^9}, {3.4941989675474854`*^9,
3.4941989999331427`*^9}, {3.494200557901883*^9, 3.4942005644018917`*^9}, {
3.553560008788453*^9, 3.5535600110784564`*^9}, {3.554912771049702*^9,
3.554912814569763*^9}, 3.554912888029866*^9, {3.554916331074686*^9,
3.5549163312646866`*^9}, 3.5549164666348763`*^9, {3.5549166092250757`*^9,
3.5549166341951103`*^9}, 3.5549275597684135`*^9, {3.554932694456403*^9,
3.554932695816405*^9}, 3.554932822566582*^9, {3.554933326157287*^9,
3.554933340167307*^9}, 3.585349881911075*^9, 3.5853501078513913`*^9,
3.585350151621453*^9, 3.5853508903124866`*^9, 3.585351282413036*^9, {
3.585352008146552*^9, 3.585352010226555*^9}, 3.5861902275831556`*^9,
3.586190276733225*^9, {3.5861907282838573`*^9, 3.586190728873858*^9},
3.5869682634208612`*^9, {3.5869683181009398`*^9, 3.586968324595949*^9}, {
3.586968439478614*^9, 3.5869684496486287`*^9}, 3.5869697850620594`*^9, {
3.5869701425625734`*^9, 3.5869701521475873`*^9}, {3.5869702086776686`*^9,
3.586970234562706*^9}, {3.5869702875227823`*^9, 3.5869702968127956`*^9}, {
3.5869704908780746`*^9, 3.5869705133931065`*^9}, {3.5869708000960197`*^9,
3.586970808086031*^9}, {3.5869852813566303`*^9, 3.586985318656684*^9}, {
3.5869870236141195`*^9, 3.58698702395412*^9}, {3.586988063855576*^9,
3.586988074335591*^9}, {3.5870773925600586`*^9, 3.58707739339006*^9}, {
3.620502007662987*^9, 3.6205020666253595`*^9}, {3.6209257154875236`*^9,
3.620925729153305*^9}, {3.671212857378598*^9, 3.671212858650671*^9}, {
3.6712130120874467`*^9, 3.67121303608482*^9}, {3.671218636878166*^9,
3.6712186441125803`*^9}, 3.6712280364406767`*^9, {3.671379300014107*^9,
3.671379300014107*^9}, 3.671379521634101*^9, 3.7152179235916414`*^9, {
3.752972825074355*^9, 3.752972835666774*^9}, 3.7534571761238403`*^9,
3.753457232346339*^9},
Background->GrayLevel[0.85]],
Cell["", "Subsubsection",
CellDingbat->None,
CellChangeTimes->{3.4796643211106243`*^9, 3.4941724567488375`*^9}]
}, Closed]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"\t",
RowBox[{Cell[TextData[StyleBox["2:",
FontFamily->"Arial",
FontColor->RGBColor[1, 0, 0]]], "None"], " ",
RowBox[{"\[Integral]",
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"d", " ", "x"}], ")"}], "m"],
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
RowBox[{"ArcSinh", "[",
RowBox[{"c", " ", "x"}], "]"}]}]}], ")"}], "n"],
RowBox[{"\[DifferentialD]", "x"}], " ",
StyleBox["when",
FontFamily->"Arial",
FontWeight->"Plain"],
StyleBox[" ",
FontFamily->"Arial",
FontWeight->"Plain"], Cell[TextData[Cell[BoxData[
RowBox[{
RowBox[{"n", "\[Element]",
SuperscriptBox["\[DoubleStruckCapitalZ]", "+"]}], "\[And]", " ",
RowBox[{"m", "\[NotEqual]",
RowBox[{"-", "1"}]}]}]]]], "None"]}]}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{
3.477935275784027*^9, {3.477935350060832*^9, 3.477935352384173*^9}, {
3.477935393803731*^9, 3.477935400102789*^9}, {3.477935515378547*^9,
3.47793552034569*^9}, 3.478120029940968*^9, {3.479318860690858*^9,
3.47931886615872*^9}, {3.4794185033278093`*^9, 3.479418503918659*^9},
3.4795122294117584`*^9, {3.479615913307893*^9, 3.4796159352794867`*^9},
3.4796160386581373`*^9, 3.4796867204045024`*^9, {3.4928025699585147`*^9,
3.492802570130115*^9}, 3.492822274480175*^9, 3.492825822242408*^9, {
3.4940970615585365`*^9, 3.494097062168537*^9}, {3.496441349250718*^9,
3.496441349830719*^9}, 3.4964414848609076`*^9, 3.496521708137803*^9, {
3.4965218981240697`*^9, 3.49652189838407*^9}, 3.4965229070755*^9,
3.519247079685614*^9, {3.5193208582062006`*^9, 3.5193208612170057`*^9},
3.5193325694253187`*^9, {3.5193422443984776`*^9, 3.5193422447260776`*^9},
3.5193424488212357`*^9, {3.5193434708254333`*^9, 3.519343473103037*^9}, {
3.5193435097631016`*^9, 3.51934353169674*^9}, {3.519345739319023*^9,
3.519345739599823*^9}, 3.5193462601259375`*^9, {3.5193475061060295`*^9,
3.5193475233908596`*^9}, {3.519351391880224*^9, 3.5193513931402254`*^9}, {
3.519403773021052*^9, 3.5194037798564425`*^9}, 3.5194106793250647`*^9, {
3.519537578341393*^9, 3.5195375792305946`*^9}, {3.5195376277778797`*^9,
3.51953767927357*^9}, {3.5197586260636144`*^9, 3.5197586260636144`*^9}, {
3.51978053295651*^9, 3.519780542862528*^9}, {3.5197806526087203`*^9,
3.5197806657595434`*^9}, {3.5197807490168896`*^9, 3.5197807642581167`*^9},
3.5197809004619555`*^9, {3.519782653514635*^9, 3.5197826623286505`*^9}, {
3.5200207810164795`*^9, 3.520020785046485*^9}, {3.5213126833374643`*^9,
3.5213126833374643`*^9}, {3.521328235411002*^9, 3.521328235411002*^9}, {
3.523315567893022*^9, 3.523315567893022*^9}, {3.5233157569332867`*^9,
3.5233157613032923`*^9}, {3.5323023198133526`*^9, 3.532302355723403*^9}, {
3.5323026417638035`*^9, 3.5323026417638035`*^9}, {3.5323026980138817`*^9,
3.5323026980138817`*^9}, {3.532636287104328*^9, 3.532636287104328*^9}, {
3.5330803686035347`*^9, 3.533080368863535*^9}, {3.533248909289961*^9,
3.5332489110299635`*^9}, {3.534962469565694*^9, 3.5349624910757236`*^9}, {
3.5349625224057674`*^9, 3.534962522655768*^9}, {3.534965265519608*^9,
3.534965265519608*^9}, {3.5349668288168063`*^9, 3.5349668292668066`*^9}, {
3.5349747358481646`*^9, 3.5349747358481646`*^9}, {3.534975457949176*^9,
3.534975457949176*^9}, {3.5368633963532934`*^9, 3.536863396571694*^9}, {
3.541644322511304*^9, 3.5416443577513533`*^9}, {3.5416458269234104`*^9,
3.541645839633428*^9}, {3.5416460312236967`*^9, 3.541646031483697*^9},
3.541646227783972*^9, {3.541647080335165*^9, 3.5416471077052035`*^9}, {
3.541648997607849*^9, 3.5416489978278494`*^9}, 3.541649088407976*^9, {
3.5417848711596775`*^9, 3.541784902429721*^9}, {3.541786145331461*^9,
3.5417861455914617`*^9}, {3.5417870037166634`*^9, 3.5417870039366636`*^9},
3.5462979620242105`*^9, {3.546298264094633*^9, 3.546298265344635*^9}, {
3.546299000235664*^9, 3.546299001505666*^9}, {3.546315119909564*^9,
3.5463151267659564`*^9}, {3.547227356319705*^9, 3.547227356319705*^9},
3.547918559331044*^9, {3.547918610170952*^9, 3.5479186304411116`*^9},
3.548537755517557*^9, 3.5485441629685287`*^9, 3.5485517520154133`*^9, {
3.5488740727887154`*^9, 3.5488740727887154`*^9}, {3.548874206618903*^9,
3.548874206808903*^9}, 3.548877100795455*^9, 3.550596464087599*^9, {
3.5505965767870445`*^9, 3.5505965767870445`*^9}, 3.5505966202465305`*^9, {
3.5506039138305197`*^9, 3.55060391400453*^9}, {3.5506040039986773`*^9,
3.550604005776779*^9}, {3.5506178888272758`*^9, 3.5506178900273447`*^9}, {
3.550770598144562*^9, 3.550770659629079*^9}, {3.5507707252908344`*^9,
3.5507707474461017`*^9}, 3.5507880023630266`*^9, {3.5508017696214375`*^9,
3.5508017788269644`*^9}, {3.5508018116158395`*^9, 3.5508018116158395`*^9},
3.5508018976437597`*^9, {3.5508021384015307`*^9, 3.550802155115487*^9}, {
3.5508022151019173`*^9, 3.5508022151019173`*^9}, {3.550802487106476*^9,
3.5508025179152374`*^9}, {3.5508029261175857`*^9,
3.5508029342300496`*^9}, {3.5521511708590136`*^9, 3.5521511712334137`*^9},
3.552151666269083*^9, {3.5535324250863676`*^9, 3.553532441643315*^9}, {
3.553532476791325*^9, 3.553532477502366*^9}, 3.553532677104782*^9,
3.553535197344932*^9, {3.55353551200593*^9, 3.5535355292779174`*^9}, {
3.553535652504881*^9, 3.5535356543924847`*^9}, {3.5549205830406413`*^9,
3.5549206114906807`*^9}, {3.5549308888338747`*^9,
3.5549309083539023`*^9}, {3.554931435854641*^9, 3.554931436064641*^9}, {
3.5549322334657574`*^9, 3.5549322565857897`*^9}, {3.5549353682701464`*^9,
3.554935391020178*^9}, {3.554935426840228*^9, 3.5549354282902303`*^9}, {
3.555033837273942*^9, 3.5550338379339433`*^9}, 3.555192038926259*^9, {
3.5551954393656588`*^9, 3.555195441485662*^9}, {3.5551955518058167`*^9,
3.555195552035817*^9}, {3.5551955952058773`*^9, 3.5551956072558937`*^9}, {
3.55519569731602*^9, 3.5551956975160203`*^9}, {3.555197194648116*^9,
3.55519719743812*^9}, {3.555197458228485*^9, 3.555197458508486*^9},
3.555198698680222*^9, {3.555199705331631*^9, 3.5551997224916553`*^9}, {
3.5552515664863663`*^9, 3.5552515664863663`*^9}, {3.555251683252571*^9,
3.555251701910204*^9}, {3.5552526803751225`*^9, 3.555252680593523*^9}, {
3.58621170339386*^9, 3.586211705488863*^9}, {3.5862125930151515`*^9,
3.586212593235152*^9}, {3.5863114862575855`*^9, 3.5863114864075856`*^9}, {
3.5863607978812284`*^9, 3.586360800196232*^9}, {3.58636092405641*^9,
3.5863609249564114`*^9}, 3.586360964686468*^9, 3.58636100788653*^9,
3.586361046841586*^9, {3.586364293468548*^9, 3.58636429510855*^9}, {
3.5863650826846805`*^9, 3.586365082824681*^9}, {3.586968648036414*^9,
3.5869686481964145`*^9}, {3.5869832290261755`*^9,
3.5869832290261755`*^9}, {3.586983397656419*^9, 3.586983397836419*^9}, {
3.5869848315109825`*^9, 3.586984831870983*^9}, 3.620157935170122*^9,
3.620268621175521*^9, {3.6712141011137357`*^9, 3.671214131645482*^9},
3.671379300029707*^9},
FontSize->12,
FontWeight->"Bold"],
Cell["Derivation: Integration by parts", "Subsubsection",
CellChangeTimes->{
3.4941724567488375`*^9, 3.494172818179343*^9, {3.495045874395023*^9,
3.495045875835025*^9}, {3.4950462556855564`*^9, 3.495046257635559*^9},
3.553373119004768*^9}],
Cell[TextData[{
"Basis: ",
Cell[BoxData[
RowBox[{
RowBox[{
SubscriptBox["\[PartialD]", "x"],
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
RowBox[{"ArcSinh", "[",
RowBox[{"c", " ", "x"}], "]"}]}]}], ")"}], "n"]}], "\[Equal]",
FractionBox[
RowBox[{"b", " ", "c", " ", "n", " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
RowBox[{"ArcSinh", "[",
RowBox[{"c", " ", "x"}], "]"}]}]}], ")"}],
RowBox[{"n", "-", "1"}]]}],
SqrtBox[
RowBox[{"1", "+",
RowBox[{
SuperscriptBox["c", "2"], " ",
SuperscriptBox["x", "2"]}]}]]]}]], "Input",
CellChangeTimes->{{3.586566688639513*^9, 3.586566713339547*^9}, {
3.586567111720105*^9, 3.5865671350101376`*^9}, {3.586567519960676*^9,
3.5865675376207013`*^9}, 3.586567570720748*^9, {3.58656788675119*^9,
3.58656790809122*^9}, {3.586567943031269*^9, 3.5865680220613794`*^9}, {
3.586568118811515*^9, 3.586568119461516*^9}, {3.5865681534515634`*^9,
3.5865681775415974`*^9}, {3.5865682092116413`*^9,
3.5865682434616895`*^9}, {3.5865682763917356`*^9, 3.5865683413518267`*^9}}]
}], "Subsubsection",
CellChangeTimes->{{3.5813762364323072`*^9, 3.581376326802434*^9}, {
3.5813826880473433`*^9, 3.5813826880473433`*^9}, {3.581720310829357*^9,
3.581720310829357*^9}, {3.581720366149435*^9, 3.581720366149435*^9}, {
3.5817204073994923`*^9, 3.5817204073994923`*^9}, {3.581720524929657*^9,
3.581720524929657*^9}, {3.5864633734979143`*^9, 3.5864633862354326`*^9}, {
3.586463493968087*^9, 3.586463494893089*^9}, {3.5864635381531506`*^9,
3.5864635393731527`*^9}, {3.586463685870864*^9, 3.586463685870864*^9}, {
3.58646382210106*^9, 3.58646382210106*^9}, {3.5864732982240467`*^9,
3.5864732982240467`*^9}, {3.586485090653509*^9, 3.586485090653509*^9}, {
3.586485180371138*^9, 3.586485180371138*^9}, {3.5864852213711967`*^9,
3.5864852213711967`*^9}, {3.586494187606468*^9, 3.5864942133777137`*^9}, {
3.5865432242749014`*^9, 3.5865432242749014`*^9}, {3.5865463088192196`*^9,
3.586546312729225*^9}, {3.586546396929343*^9, 3.5865464175093718`*^9}, {
3.5865464529294214`*^9, 3.5865464529294214`*^9}, {3.586546532519533*^9,
3.586546532519533*^9}, {3.5865468163899307`*^9, 3.5865468386399612`*^9}, {
3.5865491636532164`*^9, 3.5865491636532164`*^9}, {3.5865492145532875`*^9,
3.5865492145532875`*^9}, {3.586551856136986*^9, 3.586551856136986*^9}, {
3.5865607519912014`*^9, 3.5865607519912014`*^9}, {3.586563741525387*^9,
3.5865638039054737`*^9}, {3.5865678077210793`*^9, 3.586567824111102*^9},
3.586568533272095*^9, {3.5865688286425085`*^9, 3.5865688286425085`*^9}, {
3.586568997022744*^9, 3.586568997022744*^9}, {3.5865691763429956`*^9,
3.5865691763429956`*^9}, {3.5865833764756064`*^9,
3.5865833764756064`*^9}, {3.620501915857736*^9, 3.620501915857736*^9}, {
3.6712128305470634`*^9, 3.6712128305470634`*^9}, {3.6713792999829073`*^9,
3.6713792999829073`*^9}, {3.6713794435607643`*^9,
3.6713794435607643`*^9}, {3.751308971135766*^9, 3.751308971813805*^9}, {
3.7513090956018853`*^9, 3.7513090956018853`*^9}, {3.751309217850878*^9,
3.7513092178518777`*^9}, {3.7529665761147313`*^9,
3.7529665761147313`*^9}, {3.7529729315445423`*^9, 3.752972960451393*^9}}],
Cell[TextData[{
"Rule: If ",
Cell[BoxData[
RowBox[{
RowBox[{"n", "\[Element]",
SuperscriptBox["\[DoubleStruckCapitalZ]", "+"]}], "\[And]", " ",
RowBox[{"m", "\[NotEqual]",
RowBox[{"-", "1"}]}]}]]],
", then"
}], "Subsubsection",
CellDingbat->"\[FilledSmallSquare]",
CellChangeTimes->{{3.4794189093216*^9, 3.479418932274605*^9}, {
3.479418981395237*^9, 3.4794189822564754`*^9}, {3.4794192068193808`*^9,
3.4794192077607346`*^9}, 3.479420089138093*^9, {3.479420130978256*^9,
3.4794201410627565`*^9}, {3.479420560345656*^9, 3.479420578171288*^9}, {
3.479420683943381*^9, 3.4794206847645617`*^9}, {3.4794210347678413`*^9,
3.4794210503903055`*^9}, 3.4803613662913427`*^9, {3.480361406058525*^9,
3.48036141974821*^9}, {3.4803614672865667`*^9, 3.480361474717252*^9},
3.48070534977779*^9, {3.4928296953212276`*^9, 3.492829707041244*^9},
3.4941724084687696`*^9, 3.4941724567488375`*^9, {3.4941737492506466`*^9,
3.4941737506706486`*^9}, {3.494173966810951*^9, 3.494174007671008*^9}, {
3.4941741326011834`*^9, 3.4941741425911975`*^9}, {3.4941767936905165`*^9,
3.494176809630539*^9}, {3.4941773316412697`*^9, 3.494177333751273*^9}, {
3.4941891756608777`*^9, 3.494189178765283*^9}, {3.4942004775317707`*^9,
3.494200477881771*^9}, {3.4950424099901724`*^9, 3.495042435550208*^9}, {
3.495045573264601*^9, 3.4950455868746204`*^9}, {3.5533778848417416`*^9,
3.55337789792449*^9}, {3.5535355634443245`*^9, 3.5535355634443245`*^9}, {
3.5549309146039114`*^9, 3.5549309146039114`*^9}, {3.554935398190188*^9,
3.554935398190188*^9}, {3.554935438010244*^9, 3.554935438010244*^9}, {
3.555033842213949*^9, 3.555033842213949*^9}, {3.55519561866591*^9,
3.55519561866591*^9}, {3.5551973155382853`*^9, 3.5551973155382853`*^9}, {
3.5552507987466173`*^9, 3.5552507987466173`*^9}, {3.555251708290615*^9,
3.555251708290615*^9}, {3.5863609285464163`*^9, 3.5863609299914184`*^9}, {
3.5869832316511793`*^9, 3.5869832316511793`*^9}, {3.6712141258361497`*^9,
3.6712141258361497`*^9}}],
Cell[BoxData[
RowBox[{
RowBox[{"\[Integral]",
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"d", " ", "x"}], ")"}], "m"],
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
RowBox[{"ArcSinh", "[",
RowBox[{"c", " ", "x"}], "]"}]}]}], ")"}], "n"],
RowBox[{"\[DifferentialD]",
RowBox[{"x", " ", "\[LongRightArrow]", " ",
FractionBox[
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"d", " ", "x"}], ")"}],
RowBox[{"m", "+", "1"}]],
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
RowBox[{"ArcSinh", "[",
RowBox[{"c", " ", "x"}], "]"}]}]}], ")"}], "n"]}],
RowBox[{"d",
RowBox[{"(",
RowBox[{"m", "+", "1"}], ")"}]}]]}]}]}]}], "-",
RowBox[{
FractionBox[
RowBox[{"b", " ", "c", " ", "n"}],
RowBox[{"d",
RowBox[{"(",
RowBox[{"m", "+", "1"}], ")"}]}]],
RowBox[{"\[Integral]",
RowBox[{
FractionBox[
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"d", " ", "x"}], ")"}],
RowBox[{"m", "+", "1"}]],
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
RowBox[{"ArcSinh", "[",
RowBox[{"c", " ", "x"}], "]"}]}]}], ")"}],
RowBox[{"n", "-", "1"}]]}],
SqrtBox[
RowBox[{"1", "+",
RowBox[{
SuperscriptBox["c", "2"], " ",
SuperscriptBox["x", "2"]}]}]]],
RowBox[{"\[DifferentialD]", "x"}]}]}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{{3.4796579732027807`*^9, 3.479658002474872*^9}, {
3.4796580599975853`*^9, 3.4796580609489536`*^9}, {3.479658295195784*^9,
3.47965829684816*^9}, 3.4796611938939075`*^9, 3.4796613924794593`*^9, {
3.479661443342597*^9, 3.479661446647349*^9}, {3.479661576554146*^9,
3.479661589302477*^9}, 3.479661847553824*^9, {3.4796622294729967`*^9,
3.4796622450654173`*^9}, {3.479686720424531*^9, 3.4796867204345455`*^9}, {
3.4796874646646957`*^9, 3.4796874745589232`*^9}, {3.492826573513727*^9,
3.492826578630536*^9}, {3.4928267070863624`*^9, 3.492826707460763*^9},
3.4928267903497095`*^9, {3.492829799151373*^9, 3.4928299617216005`*^9}, {
3.4940972077187414`*^9, 3.4940972347887793`*^9}, {3.49409966398218*^9,
3.494099664952181*^9}, {3.4940997156722527`*^9, 3.494099716112253*^9},
3.4941724567488375`*^9, {3.4941727384192314`*^9, 3.494172760679263*^9}, {
3.4941763955899596`*^9, 3.4941764290900064`*^9}, {3.4941764605500507`*^9,
3.4941764930400963`*^9}, {3.4941882372412295`*^9, 3.49418823769363*^9}, {
3.4950421850198574`*^9, 3.4950422389399333`*^9}, {3.495045295774213*^9,
3.495045310274233*^9}, {3.4950453750643234`*^9, 3.4950453777743273`*^9}, {
3.495045490884486*^9, 3.4950454957944927`*^9}, {3.553368718813157*^9,
3.553368809340116*^9}, {3.5549303571831307`*^9, 3.554930396443186*^9}, {
3.554930437533243*^9, 3.5549304634232793`*^9}, 3.5549305254833665`*^9, {
3.554930589243456*^9, 3.554930617493495*^9}, 3.5862788834076395`*^9, {
3.5863608076262426`*^9, 3.586360820456261*^9}, {3.586360965441469*^9,
3.5863609683564734`*^9}, {3.5863610189915457`*^9,
3.5863610205265484`*^9}, {3.586361052396594*^9, 3.586361055186598*^9}, {
3.671214134612652*^9, 3.6712141537697477`*^9}, {3.671379300045307*^9,
3.6713793000609074`*^9}, 3.6713797710398564`*^9},
TextAlignment->Center,
FontSize->12,
FontWeight->"Bold"],
Cell["Program code:", "Subsubsection",
CellDingbat->"\[FilledSmallSquare]",
CellChangeTimes->{{3.4794189093216*^9, 3.479418932274605*^9}, {
3.479418981395237*^9, 3.4794189822564754`*^9}, {3.4794192068193808`*^9,
3.4794192077607346`*^9}, 3.479420089138093*^9, {3.479420130978256*^9,
3.4794201410627565`*^9}, {3.479420560345656*^9, 3.479420578171288*^9}, {
3.479420683943381*^9, 3.4794206847645617`*^9}, {3.4794210347678413`*^9,
3.4794210503903055`*^9}, 3.4803613662913427`*^9, {3.480361406058525*^9,
3.48036141974821*^9}, {3.4803614672865667`*^9, 3.480361474717252*^9},
3.4807050675119123`*^9, {3.492804314166378*^9, 3.4928043441496305`*^9}, {
3.4928044532166224`*^9, 3.492804453513023*^9}, {3.492805162266266*^9,
3.492805165713872*^9}, 3.4941724567488375`*^9}],
Cell[BoxData[
RowBox[{
RowBox[{"Int", "[",
RowBox[{
RowBox[{
RowBox[{
RowBox[{"(",
RowBox[{"d_.", "*", "x_"}], ")"}], "^", "m_."}], "*",
RowBox[{
RowBox[{"(",
RowBox[{"a_.", "+",
RowBox[{"b_.", "*",
RowBox[{"ArcSinh", "[",
RowBox[{"c_.", "*", "x_"}], "]"}]}]}], ")"}], "^", "n_."}]}], ",",
"x_Symbol"}], "]"}], " ", ":=", "\n", " ",
RowBox[{
RowBox[{
RowBox[{
RowBox[{
RowBox[{"(",
RowBox[{"d", "*", "x"}], ")"}], "^",
RowBox[{"(",
RowBox[{"m", "+", "1"}], ")"}]}], "*",
RowBox[{
RowBox[{
RowBox[{"(",